home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / utime < prev    next >
Text File  |  2001-07-14  |  516b  |  23 lines

  1.         /* EFUN utime()
  2. SYNOPSIS
  3.         int* utime()
  4.  
  5. DESCRIPTION
  6.          Return the time since 1. Jan 1970, 00:00:00 GMT in microsecond
  7.          precision.
  8.          
  9.          Return is an array:
  10.            int[0]: number of seconds elapsed
  11.            int[1]: number of microseconds within the current second.
  12.  
  13. EXAMPLE
  14.         write(ctime(utime())+"\n");
  15.         
  16.         Print out the current date and time.
  17.  
  18. HISTORY
  19.         Introduced in LDMud 3.2.9.
  20.  
  21. SEE ALSO
  22.         ctime(E), gmtime(E), localtime(E), time(E)
  23.